home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / DELPHI32 / SEARCH / RUBICON / RUBICON.ZIP / VERIFY.DPR < prev    next >
Text File  |  1996-10-22  |  265b  |  17 lines

  1. program Verify;
  2.  
  3. uses
  4.   Forms,
  5.   rbVerify in 'rbVerify.pas' {Form1};
  6.  
  7. {$R *.RES}
  8.  
  9. begin
  10.   {$IFDEF WIN32}
  11.   Application.Initialize;
  12.   {$ENDIF}
  13.   Application.Title := 'Verify Utility';
  14.   Application.CreateForm(TForm1, Form1);
  15.   Application.Run;
  16. end.
  17.